home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / dos_win / winsock / maillist / 94-03.Z / 94-03 / text0365.txt < prev    next >
Encoding:
Text File  |  1994-03-30  |  5.7 KB  |  148 lines

  1. Is there such a thing as a (unix compatible) lpd daemon for OS/2? 
  2. Would a DOS one work?
  3.  
  4. Basically we're looking for a way to let TCP'ed PCs (running BSD or Windows) to talk to a HP LaserJet hooked up to an OS/2 box on a LanManager Network. Someone
  5. wants to avoid buying an EtherNet card for the printer and do this the easy way.
  6.  
  7. Pointers to FAQ's, ftp sites, more relevant newsgroups gratefully accepted.
  8.  
  9. e-mail responses preferred.
  10.  
  11. Thanks.
  12. -- 
  13.  
  14. ---Simon Boyle
  15. <A HREF="http://www.maths.tcd.ie/hyplan/sboyle/sboyle.html">
  16. sboyle@maths.tcd.ie </A>
  17. From news@bigblue.oit.unc.edu Fri Mar 25 20:36:30 1994
  18. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  19.           id AA09860; Fri, 25 Mar 1994 16:12:27 -0500
  20. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  21.           id AA08491; Fri, 25 Mar 1994 16:09:17 -0500
  22. Received: from GATEWAY by bigblue with netnews
  23.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  24. To: winsock@sunsite.unc.edu
  25. Date: Fri, 25 Mar 1994 20:36:30 GMT
  26. From: rcaspi@ucsd.edu (Ron Caspi)
  27. Message-Id: <rcaspi.11.2D934B4E@ucsd.edu>
  28. Organization: UCSD
  29. Sender: ses
  30. References: <evan-240394185827@mac17.dana1.swarthmore.edu>
  31. Subject: Re: AppleTalk - Can anyone help? (long)
  32.  
  33. In article <evan-240394185827@mac17.dana1.swarthmore.edu> evan@raptor.sccs.swarthmore.edu (Evan Dorn) writes:
  34. >From: evan@raptor.sccs.swarthmore.edu (Evan Dorn)
  35. >Subject: AppleTalk - Can anyone help?
  36. >Date: 25 Mar 1994 00:10:14 GMT
  37.  
  38. >Hey,  my school decided to cripple it's students by installing AppleTalk!
  39.  
  40. >Meanwhile, I am working on helping all the *marginalized* PC users get 
  41. >connected to the net-  and I'm stymied when it comes to Windows and
  42. >packets.
  43. >I have Farallon's Phone net software and some DOS based (Stanford) IP
  44. >stuff successfully running.
  45.  
  46. >I have installed the Crynwr Appletlk.com packet driver successfully, and
  47. >WINPKT boots OK, but in Windows, the TCPman refuses to start, giving the 
  48. >drivers not found error. 
  49.  
  50. >Is this insurmountable because I am on a dumb network?
  51. >Any advice would be greatly appreciated by the poor PC users of Swarthmore.
  52. >Thanks, 
  53. >Evan <evan@sccs.swarthmore.edu>
  54.  
  55. I was going to write my answer to your address, but since quite a few people 
  56. expressed their interest, I thought I will share my current knowledge with 
  57. the rest.
  58. I have the same setting, and managed to get the system working after 
  59. a lot of effort. The problem is that phonenet pc is using a odi driver, not a 
  60. packet driver. After loading the phonenet drivers you must load a shim - 
  61. odipkt, which rides on top of the odi driver and emulates a packet driver. 
  62. After odipkt you load can load winpkt and finally winsock. I did not manage to 
  63. get the system working until I have done a few things:1. switched to a vector 
  64. address of 0x69 (which is the default address of odipkt). You must specify 
  65. this address to both winpkt and winsock.2. modified net.cfg to include four 
  66. frames, and enough buffers. My net.cfg looks now like that:
  67. Link Support
  68.    Buffers 6 1600
  69.    MemPool 16K
  70.  
  71. Protocol AppleTalk
  72.     DEFAULT NE2000 #1 H(5080B4) Z(HUBBSHALL)
  73.         AARP NE2000 #1 H(0001) L(6) B(090007FFFFFF)
  74.  
  75. Link Driver NE2000
  76. #   Eagle/Novell NE2000T Ethernet Adapter
  77.     INT #1 3
  78.     PORT #1 300 3
  79.     FRAME ETHERNET_II
  80.     FRAME ETHERNET_802.2
  81.     FRAME ETHERNET_802.3
  82.     FRAME ETHERNET_SNAP
  83.     PROTOCOL IPX 0 ETHERNET_802.3
  84.     PROTOCOL APPLETALK 80007809B ETHERNET_SNAP
  85.     PROTOCOL AARP 80F3 ETHERNET_SNAP
  86. 3. after all that winsock stopped telling me "can't load tcp", but instead 
  87. began compaining that it does not have enough memory for network buffers. I 
  88. than moved all the driver loading statements from the file "aboth.bat" in 
  89. phonenet directory (which was called from autoexec.bat) into autoexec.bat, and 
  90. ran memmaker on it. so the relevant part of my autoexec.bat now looks like:
  91. REM call C:\PHONENET\ABOTH
  92. C:\PHONENET\LSL
  93. C:\PHONENET\PNTVDD
  94. LH /L:2,13536 C:\PHONENET\NE2000
  95. LH /L:3,11360 C:\PHONENET\AARP
  96. LH /L:3,47136 C:\PHONENET\ATALK
  97. LH /L:1,8528 C:\PHONENET\ASP_WS
  98. C:\PHONENET\ASHARE
  99. LH /L:1,1872 C:\PHONENET\MINSES
  100. LH /L:3,34032 C:\PHONENET\REDIR
  101. LH /L:2,8832 C:\PHONENET\PAP_WS
  102. C:\PHONENET\APRINT
  103. C:\PHONENET\ANET AUTO
  104. LH /L:4,3472 c:\network\odipkt24
  105. LH /L:2,4032 c:\network\winsock\winpkt 0x69
  106.  
  107. After optimizing the memory, winsock now loads with 10 out of 16 buffers, 
  108. which seem to be enough for most of the time (I do have a crash of winsock 
  109. every once in a while), and phonenet is just fine.
  110.  
  111. You can get odipkt from hsdndev.harvard.edu.
  112. From news@bigblue.oit.unc.edu Fri Mar 25 04:48:41 1994
  113. Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
  114.           id AA16510; Fri, 25 Mar 1994 17:11:57 -0500
  115. Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
  116.           id AA16930; Fri, 25 Mar 1994 16:57:29 -0500
  117. Received: from GATEWAY by bigblue with netnews
  118.     for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
  119. To: winsock@sunsite.unc.edu
  120. Date: 25 Mar 94 10:48:41 MDT
  121. From: wesj@extinfo.usu.edu (Wes James)
  122. Message-Id: <1994Mar25.104842.14244@cc.usu.edu>
  123. Organization: USU Extension
  124. Sender: ses
  125. References: <1994Mar25.123241.1752@goofy.fi.upm.es>
  126. Reply-To: wesj@extinfo.usu.edu
  127. Subject: WinVn
  128.  
  129. Is there any way to get WinVn to subscribe to a new news group without having
  130. to restart it?
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137. *******************************************************************
  138.   Wes James                              Email:  wesj@ext.usu.edu
  139.   Systems Specialist
  140.   Utah State University
  141.   Cooperative Extension                  Voice:  (801)797-2229
  142.   Logan, UT 84322-4900                     FAX:  (801)797-3268
  143. *******************************************************************
  144.             *******************************************
  145.            | A job isn't done until it is done right!! |
  146.             *******************************************
  147.  
  148.